Nevron Open Vision Documentation
Nevron.Nov Namespace / NEnum Class / TryParse Method / TryParse<TEnum>(String,TEnum) Method


In This Topic
    TryParse<TEnum>(String,TEnum) Method
    In This Topic
    Tries to parse the given string value to the specified enum. A case sensitive check is performed. Returns true on success.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function TryParse(Of TEnum As {New, Struct})( _
       ByVal value As System.String, _
       ByRef result As TEnum _
    ) As System.Boolean
    'Usage
     
    
    Dim value As System.String
    Dim result As TEnum
    Dim value As System.Boolean
     
    value = NEnum.TryParse(Of TEnum)(value, result)
    public static System.bool TryParse<TEnum>( 
       System.string value,
       out TEnum result
    )
    where TEnum: new(), struct

    Parameters

    value
    result

    Type Parameters

    TEnum
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also